PDF4Java Reference Documentation
com.o2sol.pdf4java.graphics Package / PDFPath Class / addBezierTo Method
x position of 1st point.
y position of 1st point.
x position of 2nd point.
y position of 2nd point.
x position of 3rd point.
y position of 3rd point.
In This Topic
    addBezierTo Method
    In This Topic
    Adds a cubic Bezier curve to current sub-path.
    Syntax
    public void addBezierTo( 
       double x1,
       double y1,
       double x2,
       double y2,
       double x3,
       double y3
    )

    Parameters

    x1
    x position of 1st point.
    y1
    y position of 1st point.
    x2
    x position of 2nd point.
    y2
    y position of 2nd point.
    x3
    x position of 3rd point.
    y3
    y position of 3rd point.
    See Also